home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / video / fly8111-.000 / fly8111- / fly8 / MSDOS / configc7.h < prev    next >
C/C++ Source or Header  |  1979-12-31  |  1KB  |  47 lines

  1. /* --------------------------------- config.h ------------------------------- */
  2.  
  3. /* This is part of the flight simulator 'fly8'.
  4.  * Author: Eyal Lebedinsky (eyal@ise.canberra.edu.au).
  5. */
  6.  
  7. /* System dependent configuration information: MSDOS, ms c7
  8. */
  9.  
  10. #include <string.h>
  11.  
  12. #define FLY8_MSC    1
  13.  
  14. #define    INIFILE    "fly.ini"    /* name of ini file */
  15. #define    LOGFILE    "fly.log"    /* name of log file */
  16. #define MAC_EXT "mac"        /* binary macros file extension */
  17. #define MAX_EXT "max"        /* text macros file extension */
  18. #define VMD_EXT "vmd"        /* video modes file extension */
  19. #define PRM_EXT "prm"        /* plane parameters file extension */
  20. #define SHP_EXT "vxx"        /* object shape file extension */
  21. #define NAV_EXT "nav"        /* nav data file extension */
  22. #define LND_EXT "lnd"        /* landscape file extension */
  23.  
  24. #define    RTMODE    "rt"        /* fopen file mode: read  text */
  25. #define    RBMODE    "rb"        /* fopen file mode: read  binary */
  26. #define    WTMODE    "wt"        /* fopen file mode: write text  */
  27. #define    WBMODE    "wb"        /* fopen file mode: write binary */
  28. #define    ATMODE    "at"        /* fopen file mode: read/write text */
  29. #define    ABMODE    "ab"        /* fopen file mode: read/write binary */
  30.  
  31. #define PATHSEP    ';'        /* path separator */
  32.  
  33. #define    FAR        far
  34. #define NEAR        near
  35. #define FASTCALL    _fastcall
  36. #define CDECL        _cdecl
  37. #define LOADDS        _loadds
  38. #define INTERRUPT    _interrupt
  39. #define INLINED
  40.  
  41. #define C_MAIN    main
  42.  
  43. #define FAULT_OFFSET        0x000a        /* word count! */
  44. #define MULDIV_OFFSET        (FAULT_OFFSET+3)
  45.  
  46. #define HAVE_JOYSTICK
  47.